Opc.Ua.Core
LogDebug(String,Object[]) Method



Opc.Ua Namespace > Utils Class > LogDebug Method : LogDebug(String,Object[]) Method
Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
An object array that contains zero or more objects to format.
Formats and writes a debug log message.
Syntax
'Declaration
 
<ConditionalAttribute("DEBUG")>
Public Overloads Shared Sub LogDebug( _
   ByVal message As String, _
   ByVal ParamArray args() As Object _
) 
'Usage
 
Dim message As String
Dim args() As Object
 
Utils.LogDebug(message, args)
[Conditional("DEBUG")]
public static void LogDebug( 
   string message,
   params object[] args
)
[Conditional("DEBUG")]
public:
static void LogDebug( 
   String^ message,
   ... array<Object^>^ args
) 

Parameters

message
Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
args
An object array that contains zero or more objects to format.
Example
LogDebug("Processing request from {Address}", address)
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Utils Class
Utils Members
Overload List